home *** CD-ROM | disk | FTP | other *** search
- ; FindItGui installation script
- ; $VER: 1.15 (23.09.96) by Michael Griggs
-
-
- (set #askoptions-help
- "You may select one, all or none of the choices specified."
- )
-
-
- (set exedest
- (askdir
- (prompt "Where do you wish to install FindItGui ?")
- (help @askdir-help)
- (default "SYS:WBStartup")
- )
- )
-
-
- (set installdoc
- (askoptions
-
- (prompt "Would you like to install the documentation?")
- (help #askoptions-help)
-
- (choices
-
- "AmigaGuide"
-
- )
- )
- )
-
- (set docdest
- (askdir
- (prompt "Where do you wish to install the Documentation?")
- (help @askdir-help)
- (default exedest)
- )
- )
-
- (copyfiles
- (prompt "Copying FindItGui...")
- (source "FindItGui")
- (infos)
- (dest exedest)
- )
-
-
- (copyfiles
- (prompt "Copying Documentation...")
- (source "FindItGui.Guide")
- (infos)
- (dest exedest)
- )
-
- (message "BGUI.Library is about to be installed\n"
- "Version 39 (included with FindItGui)\n"
- "is the only stable version. If you\n"
- "have a later version in LIBS: then\n"
- "please install *this* version.\n"
- "This will avoid any BGUI related\n"
- "bugs."
- )
-
- (copyfiles
- (prompt "Copying bgui.library to LIBS:")
- (source "libs/bgui.library")
- (dest "LIBS:")
- (confirm)
- (help @copylib-help)
- )
-
- (copylib
- (prompt "Copy whatis.library to LIBS:")
- (source "libs/whatis.library")
- (dest "LIBS:")
- (confirm)
- (help @copylib-help)
- )
-
- (set @default-dest exedest)
- (message "FindItGui is now ready to go!")
- (message "Please read the documentation for more information")
-
-
-